.WhatsAppIcon {
    z-index: 100;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    animation: vibrate 0.2s infinite alternate;

}

.icon {

    cursor: pointer;
    animation: pulse 0.7s infinite alternate;

}



@keyframes vibrate {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}